February 20, 2021
grid-template-columns: repeat(4, 100px); ๋ผ๊ณ ์์ฑํ์ง๋ง ์ฌ๊ธฐ์ ๋ ๊ตฌ์ฒด์ ์ผ๋ก ๊ทธ๋ฆฌ๋ ๋ผ์ธ์ ์ด๋ฆ์ ํจ๊ป ํ์ํด ์ค ์ ์์๋ค.
/* Line ๋ณ๋ก ์ด๋ฆ ๋ถ์ด๊ธฐ */
.grid {
display: grid;
gap: 10px;
grid-template-columns: [first-line] 100px [second-line] 100px [third-line] 100px [fourth-line] 100px [fifth-line];
grid-template-rows: repeat(4, 100px [sexy-line]);
}
๊ทธ๋ ๊ฒ ๋๋ฉด, grid-column: 1 / -2 ์ฒ๋ผ ์ซ์๋ก ํ๊ธฐํ ์ฌํญ์ ์์ ์ง์ด์ค ์ด๋ฆ์ผ๋ก ๋ฐ๊พธ์ด ์ ์ ์ ์๊ฒ ๋๋ค.
.header {
background: #2ecc71;
grid-column: span 4;
}
.content {
background: #3498db;
/* grid-column: 1 / -2; ๋ฅผ ์๋๋ก ๋์ฒด*/
grid-column: first-line / fourth-line;
/* grid-row: span 2; ๋ฅผ ์๋๋ก ๋์ฒด */
grid-row: sexy-line 1 / sexy-line 3;
}
.nav {
background: #8e44ad;
grid-row: span 2;
}
.footer {
background: #f39c12;
grid-column: span 4;
}